home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / RTGMaster / includes / e / rtgmaster / rtgPICA.e < prev    next >
Encoding:
Text File  |  1998-06-24  |  806 b   |  41 lines

  1. -> NOT TRANSLATED
  2.  
  3. #ifndef RTGPICA_H
  4. #define RTGPICA_H TRUE
  5.  
  6. #ifndef RTGSUBLIBS_H
  7. #include <rtgmaster/rtgsublibs.h>
  8. #endif
  9.  
  10. #ifndef EXEC_LIBRARIES_H
  11. #include <exec/libraries.h>
  12. #endif
  13.  
  14. #ifndef EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17.  
  18. struct RtgBasePICA {
  19.     struct Library rbPICA_LibBase;
  20.     ULONG rbPICA_SegList;
  21.     APTR rbPICA_ExecBase;
  22.     APTR rbPICA_GfxBase;
  23.     APTR rbPICA_IntBase;
  24.     APTR rbPICA_UtilityBase;
  25.     APTR rbPICA_VilIntuiSupBase;
  26. };
  27.  
  28. struct RtgScreenPICA {
  29.     struct RtgScreen rsPICA_Header;
  30.     ULONG rsPICA_ScreenHandle;
  31.     ULONG rsPICA_PlaneSize;
  32.     ULONG rsPICA_BytesPerRow;
  33.     ULONG rsPICA_Depth;
  34.     ULONG rsPICA_DispBuf;   // Buffer currently displayed
  35.     UWORD rsPICA_Height;    // Visible Screen Height
  36.     UWORD rsPICA_NumBuf;    // Number of Buffers
  37. };
  38.  
  39. #endif
  40.  
  41.